home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19971216-19980424 / 000183_news@newsmaster….columbia.edu _Thu Feb 5 09:39:54 1998.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: <news@newsmaster.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id JAA26605
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Thu, 5 Feb 1998 09:39:53 -0500 (EST)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id JAA01380
  7.     for kermit.misc@watsun; Thu, 5 Feb 1998 09:39:52 -0500 (EST)
  8. Path: news.columbia.edu!panix!news.eecs.umich.edu!nntprelay.mathworks.com!cam-news-hub1.bbnplanet.com!boston-news-feed1.bbnplanet.com!news.bbnplanet.com!mozart.jlc.net!Pgsherm
  9. From: gsherman@remove_this.jlc.net (Glenn Sherman)
  10. Newsgroups: comp.protocols.kermit.misc
  11. Subject: k95's answer
  12. Date: 5 Feb 1998 14:35:10 GMT
  13. Organization: Granite State Software
  14. Lines: 41
  15. Message-ID: <6bcimu$aak$1@mozart.jlc.net>
  16. NNTP-Posting-Host: pm3-119.dialup.jlc.net
  17. X-Newsreader: News Xpress Version 1.0 Beta #4
  18. Xref: news.columbia.edu comp.protocols.kermit.misc:8366
  19.  
  20.  
  21. I want to be able to receive calls on my notebook.  I have a script
  22. that sets up the terminal and modem (I think).  When I run the script
  23. I get the following...
  24.  
  25. Good Afternoon, smile!
  26.  Waiting for phone call...
  27.  Device: com3, modem: hayes-2400, speed: 57600
  28.  Answer timeout:  (none)
  29.  To cancel: type Ctrl-C (hold down Ctrl, press C).
  30. PROGRAM ERROR - No response handler for modem type 10      <- Call comes in
  31. ANSWER Failure:  ""
  32.  
  33.  
  34. The script is...
  35. --------------------------------------------------------------
  36. ; ActionTec modem setup
  37.  
  38. set terminal type qnx
  39.  
  40. set port com3
  41. set modem hayes                ; starting point
  42. set modem name ActionTec PCMCIA
  43. set modem capabilities EC DC        ; error correction / data compression
  44. set modem speed-matching off
  45. set modem error-correction on
  46. set modem compression off
  47. set modem maximum-speed 57600
  48. set speed 57600
  49. answer
  50. --------------------------------------------------------------
  51.  
  52. What should I be doing next...the calling computer is a Qnx machine
  53. and it will be spawning a login on its end.  I want to be able to
  54. just "connect" and see the login prompt from the Qnx computer.
  55.  
  56. Any ideas?   Where do I look?
  57.  
  58. TIA,
  59.    Glenn
  60.